/* Basic Styles */

html, body {
    max-width: 100vw; /* Use vw for viewport width unit */
    overflow-x: hidden; /* Prevents horizontal scroll */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(0, 0, 24); /* Static fallback color */
    color: white;
    text-align: center;
    background-size: 100%;
}

.container {
    padding: 0 15px; /* Adds padding to the sides */
    max-width: 100%; /* Ensures the container does not overflow */
}



/* ---------------------------------------------------------------- */

/* Header Styles */

/* Header */
.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Left, Center, Right */
    align-items: center;
    width: 100%;
    height: 75px; /* Adjust height as needed */
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: blur(1px);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header img {
    grid-column: 1 / 2; /* First column */
    justify-self: start; /* Align the logo to the start */
    padding-left: 10px; /* Adjust based on your logo */
    max-width: 102px;
    max-height: 102px;
}

.center-buttons {
    grid-column: 2 / 3; /* Center column */
    display: flex;
    justify-content: center; /* Center buttons horizontally */
    gap: 15px; /* Adjust gap between buttons as needed */
}

.faqbutton, .PLANS, .FEATURES {
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    background-color: transparent;
    color: white; /* Ensure text color is visible by default */
    border: none;
    background-image: none; /* Ensure there's no background image by default */
    -webkit-background-clip: text;
    background-clip: text;
}

.faqbutton:hover, .PLANS:hover, .FEATURES:hover {
    -webkit-text-fill-color: transparent; /* Apply transparency only on hover */
    color: transparent; /* Makes text color transparent to show the background */
    background-image: linear-gradient(to bottom, #e6a800, #dfa402); /* Adjusted to a brighter gradient */
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6); /* Optional: Adds shadow for better visibility */
}

/* Hamburger Menu */
.hamburger-menu {
    grid-column: 3 / 4;
    display: none;
    justify-self: end;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-right: 15px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 75px; /* Position right below the header */
    right: 0;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    padding: 15px 10px;
}

.mobile-nav button {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: white;
    text-align: left;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .center-buttons {
        display: none; /* Hide full menu on mobile */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }

    .mobile-nav {
        display: block; /* Ensure visibility toggles with JavaScript */
        right: -100%;
        transition: right 0.3s ease;
    }

    .mobile-nav.open {
        right: 0;
    }
}



/* ---------------------------------------------------------------- */

/* Video section */



video {
    width: 100%; /* Video takes the full width of its parent container */
    height: auto; /* Height will be determined by the video's intrinsic aspect ratio */
    object-fit: cover; /* Ensures the video fits within the container without cropping */
    display: block;
    align-self: center;
}

.container-large {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.section_hero {
    position: relative;
    overflow: hidden;
}

.padding-global, .padding-section-medium {
    padding: 20px;
}

.hero_content, .hero_video_wrap, .hero-video-wrapper {
    position: relative;
    width: 100%; /* Maintains the width to 100% of the container */
    height: 100%; /* This sets a fixed height for the container */
}

.black-overlay, .hero_video_black-gradient, .hero_video_white-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.black-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    cursor: pointer;
}

@media (max-width: 768px) { 
    video {
        width: 100%; /* Video takes the full width of its parent container */
        height: auto; /* Height will be determined by the video's intrinsic aspect ratio */
        object-fit: cover; /* Ensures the video fits within the container without cropping */
        display: block;
        align-self: center;
    }
    
    .container-large {
        max-width: 850px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section_hero {
        position: relative;
        overflow: hidden;
    }
    
    .padding-global, .padding-section-medium {
        padding: 20px;
    }
    
    .hero_content, .hero_video_wrap, .hero-video-wrapper {
        position: relative;
        width: 100%; /* Maintains the width to 100% of the container */
        height: 100%; /* This sets a fixed height for the container */
    }
    
    .black-overlay, .hero_video_black-gradient, .hero_video_white-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .black-overlay {
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .play-button {
        cursor: pointer;
        display: inline-block;
        border: none;
        background: none;
        width: 100px;
        height: 100px;
    }
    
    .play_button-image {
        width: 100%; /* Adjusts according to the parent container */
        height: auto;
    }
}

/* ---------------------------------------------------------------- */

/* Intro Block */

.intro-block h4 {
    background-clip: text; /* Add this for non-webkit browsers, might need prefix */
    color: darkgoldenrod; /* Ensures text color doesn't block gradient */
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .94rem;
    font-weight: 250;
    line-height: 1;
    display: inline-block;
    padding-bottom: 0;
    padding-top: 75px;
}
.intro-block h1 {
    margin: 0px 0;
}

.intro-block h5 {
    padding-top: 20px;
    margin: 0px 0;
    color: rgb(184, 184, 184); /* or any shade of gray you prefer */
}

@media (max-width: 768px) {
    .intro-block h4 {
        background-clip: text; /* Add this for non-webkit browsers, might need prefix */
        color: darkgoldenrod; /* Ensures text color doesn't block gradient */
        text-align: center;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-size: .65rem;
        font-weight: 500;
        line-height: 1;
        display: inline-block;
        padding-bottom: 5px;
    }
    .intro-block h1 {
        font-size: 2rem;
        font-weight: 500;
        margin: 0px 0;
    }
    
    .intro-block h5 {
        padding-top: 20px;
        margin: 0px 0;
        color: rgb(184, 184, 184); /* or any shade of gray you prefer */
        font-size: .65rem;
        font-weight: 500;
    }
}

/* ---------------------------------------------------------------- */

/* Text Block */

.text-block {
    padding-bottom: 50px;
}

.text-block h2 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Generalsans Variable, sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing text effect */
}

.text-block h5 {
    font-weight: 600;
    color: rgb(184, 184, 184);
    font-size: 1.13rem;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glowing text effect */
}

.text-block img {
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .text-block {
        padding-bottom: 0px;
    }
    
    .text-block h2 {
        text-align: center;
        text-transform: uppercase;
        margin-top: 0;
        margin-bottom: 0;
        font-family: Generalsans Variable, sans-serif;
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.2;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glowing text effect */
    }
    
    .text-block h5 {
        font-weight: 600;
        color: rgb(184, 184, 184);
        font-size: 1rem;
        line-height: 1.5;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glowing text effect */
    }
    
    .text-block img {
        width: 150px;
        height: 150px;
    }
}

/* ---------------------------------------------------------------- */

/* FAQ Section Styles */



.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-top: 75px; /* This adds 50px of empty space above the content inside the container */
    padding-bottom: 200px;
    background-color: rgb(0, 0, 19); /* Match the body background */
    display: flex;
    flex-direction: column;
    align-items: center;
}


.faq-title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.faq-item {
    background-color: inherit; /* Inherits background from .faq-container */
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    padding: 25px;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter background on hover */
    color: #eee; /* Lighter text color on hover */
}

.faq-answer {
    max-height: 0; /* Start with answers hidden */
    overflow: hidden;
    color: #bbb;
    padding: 0 10px;
    font-size: 16px;
    transition: all 0.3s ease; /* Transition for smooth opening/closing */
}

.faq-answer p {
    margin-top: 10px;
}

.faq-question.active + .faq-answer {
    max-height: 500px; /* Adjust this based on the content size */
    padding: 10px; /* Standard padding when answer is shown */
    background-color: rgba(255, 255, 255, 0.05); /* Light background for answer */
    color: #ddd; /* Lighter text color for answer */
}

.faq-toggle {
    float: right;
    transition: transform 0.5s ease, color 0.5s ease;
    cursor: pointer;
    font-size: 24px;
    color: #757575;
    display: block;
}

.rotated {
    transform: rotate(45deg);
}

.highlighted {
    color: #ffffff; /* Ensures text is white to stand out */
}



/* ---------------------------------------------------------------- */

/* Subscription Section */



.subscription-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}

.subscription-block {
    background: linear-gradient(to top left, rgb(0, 2, 100), rgb(0, 0, 73)), 
                linear-gradient(to bottom right, rgb(0, 3, 94), rgb(0, 0, 75));
    background-blend-mode: multiply;
    
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) 
               rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    
    color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(12, 0, 56, 0.2),
                0 0 20px rgba(255, 255, 255, 0.2), /* Outer glow effect */
                0 0 30px rgba(255, 255, 255, 0.2); /* Outer glow effect */
    padding: 40px;
}

.subscription-block h2 {
    margin-bottom: 0px;
    color: #ffffff;
    font-weight: bold;
    padding-bottom: 70px;
}

.pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.old-price {
    font-size: 26px;
    color: #646464;
    text-decoration: line-through;
    margin: 0;
}

.discounted-price {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(to left, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.spacing {
    display: inline-block;
    width: 20px;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.features p {
    list-style: none;
    margin: 10px 0;
    width: 100%;
}

.icon_line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.icon_line svg {
    width: 75%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .subscription-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0px;
    }
    
    .subscription-block {
        background: linear-gradient(to top left, rgb(0, 2, 100), rgb(0, 0, 73)), 
                    linear-gradient(to bottom right, rgb(0, 3, 94), rgb(0, 0, 75));
        background-blend-mode: multiply;
        opacity: 1;
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) 
                   rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        color: #fff;
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px 0 rgba(12, 0, 56, 0.2),
                    0 0 20px rgba(255, 255, 255, 0.2),
                    0 0 30px rgba(255, 255, 255, 0.2);
        padding: 10px;
        height: auto;
        width: auto;
    }
    
    .subscription-block h2 {
        margin-bottom: 0px;
        color: #ffffff;
        font-weight: bold;
        padding-bottom: 70px;
    }
    
    .old-price {
        font-size: 26px;
        color: #646464;
        text-decoration: line-through;
        margin: 0;
    }
    
    .discounted-price {
        font-size: 28px;
        font-weight: bold;
        margin: 0;
        background: linear-gradient(to left, #FFD700, #FF8C00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
    
    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }
    
    .features p {
        list-style: none;
        margin: 10px 0;
        width: 100%;
    }
}



/* ---------------------------------------------------------------- */

/* Image Backgrounds*/



.sub-back {
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 19, 1) 0%, /* Dark blue, fully opaque */
        rgba(0, 0, 19, 0) 50% /* Transition to fully transparent at the bottom */
    ),
    url('AppScrnSht.png') no-repeat center center; /* Image/Gif */
    background-size: cover;
}

.sub-back2 {
    background: 
        linear-gradient(
            to bottom, 
            rgba(0, 0, 19, 0) 50%, /* Starts fully transparent in the middle */
            rgba(0, 0, 19, 1) 100% /* Ends fully opaque at the bottom */
        ),
        linear-gradient(
            to top, 
            rgba(0, 0, 19, 0) 50%, /* Starts fully transparent in the middle */
            rgba(0, 0, 19, 1) 100% /* Ends fully opaque at the top */
        ),
        url('Deep Graph.png') no-repeat center center / cover; /* Image with 'cover' size */
    padding-bottom: 100px;
}

.basic-back,
.medium-back,
.deep-back {
    position: relative;
    padding: 200px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 120%; /* Make image larger than container */
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.basic-back {
    background-image: linear-gradient(
            to top, rgba(0, 0, 24, 1) 0%, rgba(0, 0, 24, 0) 70%),
        linear-gradient(to bottom, rgba(0, 0, 24, 1) 0%, rgba(0, 0, 24, 0) 70%),
        url('BasicView.png');
    animation: background-shift-basic 10s infinite alternate;
}

.medium-back {
    background-image: linear-gradient(
            to top, rgba(0, 0, 24, 1) 0%, rgba(0, 0, 24, 0) 70%),
        linear-gradient(to bottom, rgba(0, 0, 24, 1) 0%, rgba(0, 0, 24, 0) 70%),
        url('MediumView.png');
    animation: background-shift-medium 12s infinite alternate;
}

.deep-back {
    background-image: linear-gradient(
            to top, rgba(0, 0, 24, 1) 0%, rgba(0, 0, 24, 0) 70%),
        linear-gradient(to bottom, rgba(0, 0, 24, 1) 0%, rgba(0, 0, 24, 0) 70%),
        url('DeepView.png');
    animation: background-shift-deep 14s infinite alternate;
}

@keyframes background-shift-basic {
    0% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 50% 30%;
    }
}

@keyframes background-shift-medium {
    0% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 50% 30%;
    }
}

@keyframes background-shift-deep {
    0% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 50% 30%;
    }
}

@keyframes shine {
    0% {
        background-position: -100%;
    }
    100% {
        background-position: 100%;
    }
}

@media (max-width: 1024px) {
    .basic-back,
    .medium-back,
    .deep-back {
        padding: 150px 0;
        background-size: 120%;
        animation: background-shift-basic 10s infinite alternate;
    }
}

@media (max-width: 768px) {
    .basic-back,
    .medium-back,
    .deep-back {
        padding: 100px 0;
        background-size: 120%;
        animation: background-shift-basic 10s infinite alternate;
    }
}

@media (max-width: 480px) {
    .basic-back,
    .medium-back,
    .deep-back {
        padding: 60px 0;
        background-size: 120%;
        animation: background-shift-basic 10s infinite alternate;
    }
}


/* Media Query Adjustments */
@media (max-width: 1024px) {
    .basic-back,
    .medium-back,
    .deep-back {
        padding: 150px 0;
        animation: background-shift 10s infinite alternate;
    }
}

@media (max-width: 768px) {
    .basic-back,
    .medium-back,
    .deep-back {
        padding: 100px 0;
        background-size: cover;
        animation: background-shift 10s infinite alternate;
    }
}

@media (max-width: 480px) {
    .basic-back,
    .medium-back,
    .deep-back {
        padding: 60px 0;
        background-size: cover;
        animation: background-shift 10s infinite alternate;
    }
}


/* Text + IMG V.2. */

.slides-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    height: 100%;
    max-width: 700px;
    margin: 0 auto; /* Centers the content horizontally */
    text-align: center;
    z-index: 1;
    position: relative;
    border-radius: 10px; /* Optional styling */
}

/* Mobile Media Query for Slides */
@media (max-width: 768px) {
    .slides-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        text-align: center;
    }
}


/* ---------------------------------------------------------------- */

/* Button Styles */

/* V1 */

.gradient-button {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-image: linear-gradient(to bottom, #dda200, #bb8900); /* Horizontal gradient from light to dark yellow */
    border: none;
    border-radius: 1px; /* Roundness of the border */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s, transform 0.4s;
    margin-top: 30px; /* Adjust as needed */
}


.gradient-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start from the left out of sight */
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    transition: left 0.2s;
    left: -150%; /* Start from the left out of sight */
    transition: left 0.04s;
}

.gradient-button:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 768px) {
    .gradient-button {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: bold;
        color: #000;
        background-image: linear-gradient(to bottom, #ffbb00, #bb993b); /* Horizontal gradient from light to dark yellow */
        border: none;
        border-radius: 5px; /* Roundness of the border */
        cursor: pointer;
        position: relative;
        overflow: hidden;
        margin-top: 30px; /* Adjust as needed */
    }
}


/* CSS for Invisible Line */
.invisible-line {
    width: 100%; /* Full width */
    height: 1px; /* Single-pixel height for line */
    background-color: transparent; /* Make it invisible */
    margin: 50px 0; /* Adjust spacing as needed */
}


/* ---------------------------------------------------------------- */

/* FOOTER */

/* Footer Links */
.footer-link {
    color: rgb(155, 155, 155); /* Change text color to gray */
    text-decoration: none; /* Remove the underline */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.footer-link:hover {
    color: #ddd; /* Change color on hover */
}

footer p {
    text-align: center; /* Center-align text */
    margin: 20px 0; /* Adjust margin as needed */
    color: rgb(155, 155, 155); /* Ensure the text color matches the links */
}


/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in-on-scroll Effect */
.fade-in-on-scroll {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in-visible {
    opacity: 1; /* Visible */
    transform: translateY(0);
}



